type crypto/tls.cipherSuiteTLS13

11 uses

	crypto/tls (current package)
		cipher_suites.go#L196: type cipherSuiteTLS13 struct {
		cipher_suites.go#L213: var cipherSuitesTLS13 = []*cipherSuiteTLS13{ // TODO: replace with a map.
		cipher_suites.go#L660: func mutualCipherSuiteTLS13(have []uint16, want uint16) *cipherSuiteTLS13 {
		cipher_suites.go#L669: func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 {
		conn.go#L231: func (hc *halfConn) setTrafficSecret(suite *cipherSuiteTLS13, level QUICEncryptionLevel, secret []byte) {
		handshake_client_tls13.go#L37: 	suite         *cipherSuiteTLS13
		handshake_server_tls13.go#L52: 	suite           *cipherSuiteTLS13
		key_schedule.go#L22: func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
		key_schedule.go#L27: func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
		key_schedule.go#L36: func (c *cipherSuiteTLS13) finishedHash(baseKey []byte, transcript hash.Hash) []byte {
		key_schedule.go#L45: func (c *cipherSuiteTLS13) exportKeyingMaterial(s *tls13.MasterSecret, transcript hash.Hash) func(string, []byte, int) ([]byte, error) {